home *** CD-ROM | disk | FTP | other *** search
/ Core Concepts in Art 2 / Core Concepts in Art (Frames of Reference)(The McGraw-Hill Companies)(2004).iso / pc / media / helpfilefordirector.txt < prev    next >
Text File  |  2003-08-06  |  701b  |  20 lines

  1. on mouseUp
  2.   global help
  3.   
  4.   if objectP(help) then set help = 0
  5.   help = new(xtra "fileio")
  6.   
  7.   helpString = "<HTML><HEAD><TITLE>SAWYER Help</TITLE></HEAD><FRAMESET FRAMEBORDER='YES' ROWS='95,*'><FRAME SCROLLING='NO' SRC='HELPtitle.html'><FRAMESET FRAMEBORDER='YES', COLS='200,*'><FRAME SCROLLING='YES' SRC='help_list.html' NAME='help_list'><FRAME SCROLLING='YES' SRC='help_info.html' NAME='help_info'></FRAMESET></HTML>"     
  8.   
  9.   openFile (help, the moviePath &"help.html",0)
  10.   delete(help)
  11.   createFile (help, the moviePath &"help.html")
  12.   openFile(help,the moviePath &"help.html",0)
  13.   
  14.   writeString(help,helpString)  
  15.   
  16.   closeFile(help)
  17.   helpFile = 0
  18.   
  19.   goToNetPage "help.html", "_new"
  20. end